From 479c7b047648119f6fb0cf754fdbd3b08acc211e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20Jard=C3=B3n?= Date: Sun, 20 Dec 2009 21:13:26 +0100 Subject: [PATCH] Fix compilation warning: use the correct conversion specifier Use G_GSIZE_FORMAT instead of %d --- gdk-pixbuf/io-png.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c index 8b90865855..da9c619848 100644 --- a/gdk-pixbuf/io-png.c +++ b/gdk-pixbuf/io-png.c @@ -883,7 +883,7 @@ static gboolean real_save_png (GdkPixbuf *pixbuf, g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_BAD_OPTION, - _("Color profile has invalid length '%d'."), + _("Color profile has invalid length '%" G_GSIZE_FORMAT "'."), icc_profile_size); success = FALSE; goto cleanup; -- 2.30.2